Class: Aws::Lambda::Types::CreateCodeSigningConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CreateCodeSigningConfigRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass CreateCodeSigningConfigRequest data as a hash:
{
description: "Description",
allowed_publishers: { # required
signing_profile_version_arns: ["Arn"], # required
},
code_signing_policies: {
untrusted_artifact_on_deployment: "Warn", # accepts Warn, Enforce
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_publishers ⇒ Types::AllowedPublishers
Signing profiles for this code signing configuration.
-
#code_signing_policies ⇒ Types::CodeSigningPolicies
The code signing policies define the actions to take if the validation checks fail.
-
#description ⇒ String
Descriptive name for this code signing configuration.
Instance Attribute Details
#allowed_publishers ⇒ Types::AllowedPublishers
Signing profiles for this code signing configuration.
588 589 590 591 592 593 594 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 588 class CreateCodeSigningConfigRequest < Struct.new( :description, :allowed_publishers, :code_signing_policies) SENSITIVE = [] include Aws::Structure end |
#code_signing_policies ⇒ Types::CodeSigningPolicies
The code signing policies define the actions to take if the validation checks fail.
588 589 590 591 592 593 594 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 588 class CreateCodeSigningConfigRequest < Struct.new( :description, :allowed_publishers, :code_signing_policies) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
Descriptive name for this code signing configuration.
588 589 590 591 592 593 594 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 588 class CreateCodeSigningConfigRequest < Struct.new( :description, :allowed_publishers, :code_signing_policies) SENSITIVE = [] include Aws::Structure end |