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::EFS::CreateFileSystem; use Moose; has AvailabilityZoneName => (is => 'ro', isa => 'Str'); has Backup => (is => 'ro', isa => 'Bool'); has CreationToken => (is => 'ro', isa => 'Str', required => 1); has Encrypted => (is => 'ro', isa => 'Bool'); has KmsKeyId => (is => 'ro', isa => 'Str'); has PerformanceMode => (is => 'ro', isa => 'Str'); has ProvisionedThroughputInMibps => (is => 'ro', isa => 'Num'); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EFS::Tag]'); has ThroughputMode => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateFileSystem'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-02-01/file-systems'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EFS::FileSystemDescription'); 1; ### main pod documentation begin ### =head1 NAME Paws::EFS::CreateFileSystem - Arguments for method CreateFileSystem on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateFileSystem on the L service. Use the attributes of this class as arguments to method CreateFileSystem. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateFileSystem. =head1 SYNOPSIS my $elasticfilesystem = Paws->service('EFS'); # To create a new file system # This operation creates a new file system with the default generalpurpose # performance mode. my $FileSystemDescription = $elasticfilesystem->CreateFileSystem( 'CreationToken' => 'tokenstring', 'PerformanceMode' => 'generalPurpose', 'Tags' => [ { 'Key' => 'Name', 'Value' => 'MyFileSystem' } ] ); # Results: my $CreationTime = $FileSystemDescription->CreationTime; my $CreationToken = $FileSystemDescription->CreationToken; my $FileSystemId = $FileSystemDescription->FileSystemId; my $LifeCycleState = $FileSystemDescription->LifeCycleState; my $NumberOfMountTargets = $FileSystemDescription->NumberOfMountTargets; my $OwnerId = $FileSystemDescription->OwnerId; my $PerformanceMode = $FileSystemDescription->PerformanceMode; my $SizeInBytes = $FileSystemDescription->SizeInBytes; my $Tags = $FileSystemDescription->Tags; # 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 AvailabilityZoneName => Str Used to create a file system that uses One Zone storage classes. It specifies the AWS Availability Zone in which to create the file system. Use the format C to specify the Availability Zone. For more information about One Zone storage classes, see Using EFS storage classes (https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html) in the I. One Zone storage classes are not available in all Availability Zones in AWS Regions where Amazon EFS is available. =head2 Backup => Bool Specifies whether automatic backups are enabled on the file system that you are creating. Set the value to C to enable automatic backups. If you are creating a file system that uses One Zone storage classes, automatic backups are enabled by default. For more information, see Automatic backups (https://docs.aws.amazon.com/efs/latest/ug/awsbackup.html#automatic-backups) in the I. Default is C. However, if you specify an C, the default is C. AWS Backup is not available in all AWS Regions where Amazon EFS is available. =head2 B CreationToken => Str A string of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation. =head2 Encrypted => Bool A Boolean value that, if true, creates an encrypted file system. When creating an encrypted file system, you have the option of specifying CreateFileSystemRequest$KmsKeyId for an existing AWS Key Management Service (AWS KMS) customer master key (CMK). If you don't specify a CMK, then the default CMK for Amazon EFS, C, is used to protect the encrypted file system. =head2 KmsKeyId => Str The ID of the AWS KMS CMK that you want to use to protect the encrypted file system. This parameter is only required if you want to use a non-default KMS key. If this parameter is not specified, the default CMK for Amazon EFS is used. This ID can be in one of the following formats: =over =item * Key ID - A unique identifier of the key, for example C<1234abcd-12ab-34cd-56ef-1234567890ab>. =item * ARN - An Amazon Resource Name (ARN) for the key, for example C. =item * Key alias - A previously created display name for a key, for example C. =item * Key alias ARN - An ARN for a key alias, for example C. =back If C is specified, the CreateFileSystemRequest$Encrypted parameter must be set to true. EFS accepts only symmetric KMS keys. You cannot use asymmetric KMS keys with EFS file systems. =head2 PerformanceMode => Str The performance mode of the file system. We recommend C performance mode for most file systems. File systems using the C performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created. The C mode is not supported on file systems using One Zone storage classes. Valid values are: C<"generalPurpose">, C<"maxIO"> =head2 ProvisionedThroughputInMibps => Num The throughput, measured in MiB/s, that you want to provision for a file system that you're creating. Valid values are 1-1024. Required if C is set to C. The upper limit for throughput is 1024 MiB/s. To increase this limit, contact AWS Support. For more information, see Amazon EFS quotas that you can increase (https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits) in the I. =head2 Tags => ArrayRef[L] A value that specifies to create one or more tags associated with the file system. Each tag is a user-defined key-value pair. Name your file system on creation by including a C<"Key":"Name","Value":"{value}"> key-value pair. =head2 ThroughputMode => Str Specifies the throughput mode for the file system, either C or C. If you set C to C, you must also set a value for C. After you create the file system, you can decrease your file system's throughput in Provisioned Throughput mode or change between the throughput modes, as long as itEs been more than 24 hours since the last decrease or throughput mode change. For more information, see Specifying throughput with provisioned mode (https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput) in the I. Default is C. Valid values are: C<"bursting">, C<"provisioned"> =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateFileSystem in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut