PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::AlexaForBusiness::CreateProfile; use Moose; has Address => (is => 'ro', isa => 'Str', required => 1); has ClientRequestToken => (is => 'ro', isa => 'Str'); has DataRetentionOptIn => (is => 'ro', isa => 'Bool'); has DistanceUnit => (is => 'ro', isa => 'Str', required => 1); has Locale => (is => 'ro', isa => 'Str'); has MaxVolumeLimit => (is => 'ro', isa => 'Int'); has MeetingRoomConfiguration => (is => 'ro', isa => 'Paws::AlexaForBusiness::CreateMeetingRoomConfiguration'); has ProfileName => (is => 'ro', isa => 'Str', required => 1); has PSTNEnabled => (is => 'ro', isa => 'Bool'); has SetupModeDisabled => (is => 'ro', isa => 'Bool'); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::AlexaForBusiness::Tag]'); has TemperatureUnit => (is => 'ro', isa => 'Str', required => 1); has Timezone => (is => 'ro', isa => 'Str', required => 1); has WakeWord => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateProfile'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AlexaForBusiness::CreateProfileResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::AlexaForBusiness::CreateProfile - Arguments for method CreateProfile on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateProfile on the L service. Use the attributes of this class as arguments to method CreateProfile. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateProfile. =head1 SYNOPSIS my $a4b = Paws->service('AlexaForBusiness'); my $CreateProfileResponse = $a4b->CreateProfile( Address => 'MyAddress', DistanceUnit => 'METRIC', ProfileName => 'MyProfileName', TemperatureUnit => 'FAHRENHEIT', Timezone => 'MyTimezone', WakeWord => 'ALEXA', ClientRequestToken => 'MyClientRequestToken', # OPTIONAL DataRetentionOptIn => 1, # OPTIONAL Locale => 'MyDeviceLocale', # OPTIONAL MaxVolumeLimit => 1, # OPTIONAL MeetingRoomConfiguration => { EndOfMeetingReminder => { Enabled => 1, ReminderAtMinutes => [ 1, ... ], # min: 1, max: 1 ReminderType => 'ANNOUNCEMENT_TIME_CHECK' , # values: ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK }, # OPTIONAL InstantBooking => { DurationInMinutes => 1, Enabled => 1, }, # OPTIONAL RequireCheckIn => { Enabled => 1, ReleaseAfterMinutes => 1, }, # OPTIONAL RoomUtilizationMetricsEnabled => 1, }, # OPTIONAL PSTNEnabled => 1, # OPTIONAL SetupModeDisabled => 1, # OPTIONAL Tags => [ { Key => 'MyTagKey', # min: 1, max: 128 Value => 'MyTagValue', # max: 256 }, ... ], # OPTIONAL ); # Results: my $ProfileArn = $CreateProfileResponse->ProfileArn; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 B Address => Str The valid address for the room. =head2 ClientRequestToken => Str The user-specified token that is used during the creation of a profile. =head2 DataRetentionOptIn => Bool Whether data retention of the profile is enabled. =head2 B DistanceUnit => Str The distance unit to be used by devices in the profile. Valid values are: C<"METRIC">, C<"IMPERIAL"> =head2 Locale => Str The locale of the room profile. (This is currently only available to a limited preview audience.) =head2 MaxVolumeLimit => Int The maximum volume limit for a room profile. =head2 MeetingRoomConfiguration => L The meeting room settings of a room profile. =head2 B ProfileName => Str The name of a room profile. =head2 PSTNEnabled => Bool Whether PSTN calling is enabled. =head2 SetupModeDisabled => Bool Whether room profile setup is enabled. =head2 Tags => ArrayRef[L] The tags for the profile. =head2 B TemperatureUnit => Str The temperature unit to be used by devices in the profile. Valid values are: C<"FAHRENHEIT">, C<"CELSIUS"> =head2 B Timezone => Str The time zone used by a room profile. =head2 B WakeWord => Str A wake word for Alexa, Echo, Amazon, or a computer. Valid values are: C<"ALEXA">, C<"AMAZON">, C<"ECHO">, C<"COMPUTER"> =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateProfile in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut