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::CreateStack; use Moose; has AccessEndpoints => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::AccessEndpoint]'); has ApplicationSettings => (is => 'ro', isa => 'Paws::AppStream::ApplicationSettings'); 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 Tags => (is => 'ro', isa => 'Paws::AppStream::Tags'); has UserSettings => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::UserSetting]'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateStack'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AppStream::CreateStackResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::AppStream::CreateStack - Arguments for method CreateStack on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateStack on the L service. Use the attributes of this class as arguments to method CreateStack. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateStack. =head1 SYNOPSIS my $appstream2 = Paws->service('AppStream'); my $CreateStackResult = $appstream2->CreateStack( Name => 'MyName', AccessEndpoints => [ { EndpointType => 'STREAMING', # values: STREAMING VpceId => 'MyString', # min: 1; OPTIONAL }, ... ], # OPTIONAL ApplicationSettings => { Enabled => 1, SettingsGroup => 'MySettingsGroup', # max: 100; OPTIONAL }, # 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 Tags => { 'MyTagKey' => 'MyTagValue', # key: min: 1, max: 128, value: max: 256 }, # 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 = $CreateStackResult->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 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 click 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 Tags => L The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. If you do not specify a value, the value is set to an empty string. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: _ . : / = + \ - @ For more information about tags, see Tagging Your Resources (https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html) in the I. =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 CreateStack in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut