Class: Aws::Lambda::Types::AllowedPublishers
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AllowedPublishers
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
List of signing profiles that can sign a code package.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#signing_profile_version_arns ⇒ Array<String>
The Amazon Resource Name (ARN) for each of the signing profiles.
Instance Attribute Details
#signing_profile_version_arns ⇒ Array<String>
The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user who can sign a code package.
332 333 334 335 336 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 332 class AllowedPublishers < Struct.new( :signing_profile_version_arns) SENSITIVE = [] include Aws::Structure end |