Class: Aws::Greengrass::Types::SecretsManagerSecretResourceData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::SecretsManagerSecretResourceData
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Attributes that define a secret resource, which references a secret from AWS Secrets Manager. AWS IoT Greengrass stores a local, encrypted copy of the secret on the Greengrass core, where it can be securely accessed by connectors and Lambda functions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_staging_labels_to_download ⇒ Array<String>
Optional.
-
#arn ⇒ String
The ARN of the Secrets Manager secret to make available on the core.
Instance Attribute Details
#additional_staging_labels_to_download ⇒ Array<String>
Optional. The staging labels whose values you want to make available on the core, in addition to ”AWSCURRENT”.
4266 4267 4268 4269 4270 4271 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4266 class SecretsManagerSecretResourceData < Struct.new( :arn, :additional_staging_labels_to_download) SENSITIVE = [] include Aws::Structure end |
#arn ⇒ String
The ARN of the Secrets Manager secret to make available on the core. The value of the secret’s latest version (represented by the ”AWSCURRENT” staging label) is included by default.
4266 4267 4268 4269 4270 4271 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4266 class SecretsManagerSecretResourceData < Struct.new( :arn, :additional_staging_labels_to_download) SENSITIVE = [] include Aws::Structure end |