Class: Aws::Greengrass::Types::SecretsManagerSecretResourceData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::SecretsManagerSecretResourceData
- Defined in:
- gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb
Overview
Note:
When making an API call, you may pass SecretsManagerSecretResourceData data as a hash:
{
arn: "__string",
additional_staging_labels_to_download: ["__string"],
}
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''.
5684 5685 5686 5687 5688 5689 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 5684 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.
5684 5685 5686 5687 5688 5689 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 5684 class SecretsManagerSecretResourceData < Struct.new( :arn, :additional_staging_labels_to_download) SENSITIVE = [] include Aws::Structure end |