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::AppStream::UpdateStack; use Moose; has AccessEndpoints => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::AccessEndpoint]'); has ApplicationSettings => (is => 'ro', isa => 'Paws::AppStream::ApplicationSettings'); has AttributesToDelete => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has DeleteStorageConnectors => (is => 'ro', isa => 'Bool'); has Description => (is => 'ro', isa => 'Str'); has DisplayName => (is => 'ro', isa => 'Str'); has EmbedHostDomains => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has FeedbackURL => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str', required => 1); has RedirectURL => (is => 'ro', isa => 'Str'); has StorageConnectors => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::StorageConnector]'); has UserSettings => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::UserSetting]'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateStack'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AppStream::UpdateStackResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::AppStream::UpdateStack - Arguments for method UpdateStack on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateStack on the L service. Use the attributes of this class as arguments to method UpdateStack. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateStack. =head1 SYNOPSIS my $appstream2 = Paws->service('AppStream'); my $UpdateStackResult = $appstream2->UpdateStack( Name => 'MyString', AccessEndpoints => [ { EndpointType => 'STREAMING', # values: STREAMING VpceId => 'MyString', # min: 1 }, ... ], # OPTIONAL ApplicationSettings => { Enabled => 1, SettingsGroup => 'MySettingsGroup', # max: 100; OPTIONAL }, # OPTIONAL AttributesToDelete => [ 'STORAGE_CONNECTORS', ... # values: STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS ], # OPTIONAL DeleteStorageConnectors => 1, # OPTIONAL Description => 'MyDescription', # OPTIONAL DisplayName => 'MyDisplayName', # OPTIONAL EmbedHostDomains => [ 'MyEmbedHostDomain', ... # max: 128 ], # OPTIONAL FeedbackURL => 'MyFeedbackURL', # OPTIONAL RedirectURL => 'MyRedirectURL', # OPTIONAL StorageConnectors => [ { ConnectorType => 'HOMEFOLDERS', # values: HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE Domains => [ 'MyDomain', ... # min: 1, max: 64 ], # max: 50; OPTIONAL ResourceIdentifier => 'MyResourceIdentifier', # min: 1, max: 2048; OPTIONAL }, ... ], # OPTIONAL UserSettings => [ { Action => 'CLIPBOARD_COPY_FROM_LOCAL_DEVICE' , # values: CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN Permission => 'ENABLED', # values: ENABLED, DISABLED }, ... ], # OPTIONAL ); # Results: my $Stack = $UpdateStackResult->Stack; # 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 AccessEndpoints => ArrayRef[L] The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. =head2 ApplicationSettings => L The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session. =head2 AttributesToDelete => ArrayRef[Str|Undef] The stack attributes to delete. =head2 DeleteStorageConnectors => Bool Deletes the storage connectors currently enabled for the stack. =head2 Description => Str The description to display. =head2 DisplayName => Str The stack name to display. =head2 EmbedHostDomains => ArrayRef[Str|Undef] The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. =head2 FeedbackURL => Str The URL that users are redirected to after they choose the Send Feedback link. If no URL is specified, no Send Feedback link is displayed. =head2 B Name => Str The name of the stack. =head2 RedirectURL => Str The URL that users are redirected to after their streaming session ends. =head2 StorageConnectors => ArrayRef[L] The storage connectors to enable. =head2 UserSettings => ArrayRef[L] The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateStack in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut