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::ImageBuilder::CreateContainerRecipe; use Moose; has ClientToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'clientToken', required => 1); has Components => (is => 'ro', isa => 'ArrayRef[Paws::ImageBuilder::ComponentConfiguration]', traits => ['NameInRequest'], request_name => 'components', required => 1); has ContainerType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'containerType', required => 1); has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description'); has DockerfileTemplateData => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'dockerfileTemplateData'); has DockerfileTemplateUri => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'dockerfileTemplateUri'); has ImageOsVersionOverride => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'imageOsVersionOverride'); has InstanceConfiguration => (is => 'ro', isa => 'Paws::ImageBuilder::InstanceConfiguration', traits => ['NameInRequest'], request_name => 'instanceConfiguration'); has KmsKeyId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'kmsKeyId'); has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name', required => 1); has ParentImage => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'parentImage', required => 1); has PlatformOverride => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'platformOverride'); has SemanticVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'semanticVersion', required => 1); has Tags => (is => 'ro', isa => 'Paws::ImageBuilder::TagMap', traits => ['NameInRequest'], request_name => 'tags'); has TargetRepository => (is => 'ro', isa => 'Paws::ImageBuilder::TargetContainerRepository', traits => ['NameInRequest'], request_name => 'targetRepository', required => 1); has WorkingDirectory => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'workingDirectory'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateContainerRecipe'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/CreateContainerRecipe'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PUT'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ImageBuilder::CreateContainerRecipeResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::ImageBuilder::CreateContainerRecipe - Arguments for method CreateContainerRecipe on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateContainerRecipe on the L service. Use the attributes of this class as arguments to method CreateContainerRecipe. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateContainerRecipe. =head1 SYNOPSIS my $imagebuilder = Paws->service('ImageBuilder'); my $CreateContainerRecipeResponse = $imagebuilder->CreateContainerRecipe( ClientToken => 'MyClientToken', Components => [ { ComponentArn => 'MyComponentVersionArnOrBuildVersionArn', Parameters => [ { Name => 'MyComponentParameterName', # min: 1, max: 256 Value => [ 'MyComponentParameterValue', ... # min: 1 ], }, ... ], # min: 1; OPTIONAL }, ... ], ContainerType => 'DOCKER', Name => 'MyResourceName', ParentImage => 'MyNonEmptyString', SemanticVersion => 'MyVersionNumber', TargetRepository => { RepositoryName => 'MyNonEmptyString', # min: 1, max: 1024 Service => 'ECR', # values: ECR }, Description => 'MyNonEmptyString', # OPTIONAL DockerfileTemplateData => 'MyInlineDockerFileTemplate', # OPTIONAL DockerfileTemplateUri => 'MyUri', # OPTIONAL ImageOsVersionOverride => 'MyNonEmptyString', # OPTIONAL InstanceConfiguration => { BlockDeviceMappings => [ { DeviceName => 'MyNonEmptyString', # min: 1, max: 1024 Ebs => { DeleteOnTermination => 1, # OPTIONAL Encrypted => 1, # OPTIONAL Iops => 1, # min: 100, max: 10000; OPTIONAL KmsKeyId => 'MyNonEmptyString', # min: 1, max: 1024 SnapshotId => 'MyNonEmptyString', # min: 1, max: 1024 VolumeSize => 1, # min: 1, max: 16000; OPTIONAL VolumeType => 'standard' , # values: standard, io1, io2, gp2, gp3, sc1, st1; OPTIONAL }, # OPTIONAL NoDevice => 'MyEmptyString', # OPTIONAL VirtualName => 'MyNonEmptyString', # min: 1, max: 1024 }, ... ], # OPTIONAL Image => 'MyNonEmptyString', # min: 1, max: 1024 }, # OPTIONAL KmsKeyId => 'MyNonEmptyString', # OPTIONAL PlatformOverride => 'Windows', # OPTIONAL Tags => { 'MyTagKey' => 'MyTagValue', # key: min: 1, max: 128, value: max: 256 }, # OPTIONAL WorkingDirectory => 'MyNonEmptyString', # OPTIONAL ); # Results: my $ClientToken = $CreateContainerRecipeResponse->ClientToken; my $ContainerRecipeArn = $CreateContainerRecipeResponse->ContainerRecipeArn; my $RequestId = $CreateContainerRecipeResponse->RequestId; # 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 ClientToken => Str The client token used to make this request idempotent. =head2 B Components => ArrayRef[L] Components for build and test that are included in the container recipe. =head2 B ContainerType => Str The type of container to create. Valid values are: C<"DOCKER"> =head2 Description => Str The description of the container recipe. =head2 DockerfileTemplateData => Str The Dockerfile template used to build your image as an inline data blob. =head2 DockerfileTemplateUri => Str The Amazon S3 URI for the Dockerfile that will be used to build your container image. =head2 ImageOsVersionOverride => Str Specifies the operating system version for the source image. =head2 InstanceConfiguration => L A group of options that can be used to configure an instance for building and testing container images. =head2 KmsKeyId => Str Identifies which KMS key is used to encrypt the container image. =head2 B Name => Str The name of the container recipe. =head2 B ParentImage => Str The source image for the container recipe. =head2 PlatformOverride => Str Specifies the operating system platform when you use a custom source image. Valid values are: C<"Windows">, C<"Linux"> =head2 B SemanticVersion => Str The semantic version of the container recipe (EmajorE.EminorE.EpatchE). =head2 Tags => L Tags that are attached to the container recipe. =head2 B TargetRepository => L The destination repository for the container image. =head2 WorkingDirectory => Str The working directory for use during build and test workflows. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateContainerRecipe in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut