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::Signer::PutSigningProfile; use Moose; has Overrides => (is => 'ro', isa => 'Paws::Signer::SigningPlatformOverrides', traits => ['NameInRequest'], request_name => 'overrides'); has PlatformId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'platformId', required => 1); has ProfileName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'profileName', required => 1); has SignatureValidityPeriod => (is => 'ro', isa => 'Paws::Signer::SignatureValidityPeriod', traits => ['NameInRequest'], request_name => 'signatureValidityPeriod'); has SigningMaterial => (is => 'ro', isa => 'Paws::Signer::SigningMaterial', traits => ['NameInRequest'], request_name => 'signingMaterial'); has SigningParameters => (is => 'ro', isa => 'Paws::Signer::SigningParameters', traits => ['NameInRequest'], request_name => 'signingParameters'); has Tags => (is => 'ro', isa => 'Paws::Signer::TagMap', traits => ['NameInRequest'], request_name => 'tags'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'PutSigningProfile'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/signing-profiles/{profileName}'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PUT'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Signer::PutSigningProfileResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::Signer::PutSigningProfile - Arguments for method PutSigningProfile on L =head1 DESCRIPTION This class represents the parameters used for calling the method PutSigningProfile on the L service. Use the attributes of this class as arguments to method PutSigningProfile. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutSigningProfile. =head1 SYNOPSIS my $signer = Paws->service('Signer'); my $PutSigningProfileResponse = $signer->PutSigningProfile( PlatformId => 'MyPlatformId', ProfileName => 'MyProfileName', Overrides => { SigningConfiguration => { EncryptionAlgorithm => 'RSA', # values: RSA, ECDSA; OPTIONAL HashAlgorithm => 'SHA1', # values: SHA1, SHA256; OPTIONAL }, # OPTIONAL SigningImageFormat => 'JSON', # values: JSON, JSONEmbedded, JSONDetached; OPTIONAL }, # OPTIONAL SignatureValidityPeriod => { Type => 'DAYS', # values: DAYS, MONTHS, YEARS; OPTIONAL Value => 1, # OPTIONAL }, # OPTIONAL SigningMaterial => { CertificateArn => 'MyCertificateArn', }, # OPTIONAL SigningParameters => { 'MySigningParameterKey' => 'MySigningParameterValue', }, # OPTIONAL Tags => { 'MyTagKey' => 'MyTagValue', # key: min: 1, max: 128, value: max: 256 }, # OPTIONAL ); # Results: my $Arn = $PutSigningProfileResponse->Arn; my $ProfileVersion = $PutSigningProfileResponse->ProfileVersion; my $ProfileVersionArn = $PutSigningProfileResponse->ProfileVersionArn; # 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 Overrides => L A subfield of C. This specifies any different configuration options that you want to apply to the chosen platform (such as a different C or C). =head2 B PlatformId => Str The ID of the signing platform to be created. =head2 B ProfileName => Str The name of the signing profile to be created. =head2 SignatureValidityPeriod => L The default validity period override for any signature generated using this signing profile. If unspecified, the default is 135 months. =head2 SigningMaterial => L The AWS Certificate Manager certificate that will be used to sign code with the new signing profile. =head2 SigningParameters => L Map of key-value pairs for signing. These can include any information that you want to use during signing. =head2 Tags => L Tags to be associated with the signing profile that is being created. =head1 SEE ALSO This class forms part of L, documenting arguments for method PutSigningProfile in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut