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::UpdateProfile; use Moose; has Address => (is => 'ro', isa => 'Str'); has DataRetentionOptIn => (is => 'ro', isa => 'Bool'); has DistanceUnit => (is => 'ro', isa => 'Str'); has IsDefault => (is => 'ro', isa => 'Bool'); has Locale => (is => 'ro', isa => 'Str'); has MaxVolumeLimit => (is => 'ro', isa => 'Int'); has MeetingRoomConfiguration => (is => 'ro', isa => 'Paws::AlexaForBusiness::UpdateMeetingRoomConfiguration'); has ProfileArn => (is => 'ro', isa => 'Str'); has ProfileName => (is => 'ro', isa => 'Str'); has PSTNEnabled => (is => 'ro', isa => 'Bool'); has SetupModeDisabled => (is => 'ro', isa => 'Bool'); has TemperatureUnit => (is => 'ro', isa => 'Str'); has Timezone => (is => 'ro', isa => 'Str'); has WakeWord => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateProfile'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AlexaForBusiness::UpdateProfileResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::AlexaForBusiness::UpdateProfile - Arguments for method UpdateProfile on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateProfile on the L service. Use the attributes of this class as arguments to method UpdateProfile. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateProfile. =head1 SYNOPSIS my $a4b = Paws->service('AlexaForBusiness'); my $UpdateProfileResponse = $a4b->UpdateProfile( Address => 'MyAddress', # OPTIONAL DataRetentionOptIn => 1, # OPTIONAL DistanceUnit => 'METRIC', # OPTIONAL IsDefault => 1, # OPTIONAL Locale => 'MyDeviceLocale', # OPTIONAL MaxVolumeLimit => 1, # OPTIONAL MeetingRoomConfiguration => { EndOfMeetingReminder => { Enabled => 1, ReminderAtMinutes => [ 1, ... ], # min: 1, max: 1; OPTIONAL ReminderType => 'ANNOUNCEMENT_TIME_CHECK' , # values: ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK; OPTIONAL }, # OPTIONAL InstantBooking => { DurationInMinutes => 1, Enabled => 1, }, # OPTIONAL RequireCheckIn => { Enabled => 1, ReleaseAfterMinutes => 1, }, # OPTIONAL RoomUtilizationMetricsEnabled => 1, }, # OPTIONAL PSTNEnabled => 1, # OPTIONAL ProfileArn => 'MyArn', # OPTIONAL ProfileName => 'MyProfileName', # OPTIONAL SetupModeDisabled => 1, # OPTIONAL TemperatureUnit => 'FAHRENHEIT', # OPTIONAL Timezone => 'MyTimezone', # OPTIONAL WakeWord => 'ALEXA', # OPTIONAL ); 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 Address => Str The updated address for the room profile. =head2 DataRetentionOptIn => Bool Whether data retention of the profile is enabled. =head2 DistanceUnit => Str The updated distance unit for the room profile. Valid values are: C<"METRIC">, C<"IMPERIAL"> =head2 IsDefault => Bool Sets the profile as default if selected. If this is missing, no update is done to the default status. =head2 Locale => Str The updated locale for the room profile. (This is currently only available to a limited preview audience.) =head2 MaxVolumeLimit => Int The updated maximum volume limit for the room profile. =head2 MeetingRoomConfiguration => L The updated meeting room settings of a room profile. =head2 ProfileArn => Str The ARN of the room profile to update. Required. =head2 ProfileName => Str The updated name for the room profile. =head2 PSTNEnabled => Bool Whether the PSTN setting of the room profile is enabled. =head2 SetupModeDisabled => Bool Whether the setup mode of the profile is enabled. =head2 TemperatureUnit => Str The updated temperature unit for the room profile. Valid values are: C<"FAHRENHEIT">, C<"CELSIUS"> =head2 Timezone => Str The updated timezone for the room profile. =head2 WakeWord => Str The updated wake word for the room profile. Valid values are: C<"ALEXA">, C<"AMAZON">, C<"ECHO">, C<"COMPUTER"> =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateProfile in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut