Class: Aws::Lambda::Types::AllowedPublishers
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AllowedPublishers
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass AllowedPublishers data as a hash:
{
signing_profile_version_arns: ["Arn"], # required
}
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.
355 356 357 358 359 |
# File 'lib/aws-sdk-lambda/types.rb', line 355 class AllowedPublishers < Struct.new( :signing_profile_version_arns) SENSITIVE = [] include Aws::Structure end |