Class: Aws::Greengrass::Types::SecretsManagerSecretResourceData

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#additional_staging_labels_to_downloadArray<String>

Optional. The staging labels whose values you want to make available on the core, in addition to ”AWSCURRENT”.

Returns:

  • (Array<String>)


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

#arnString

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.

Returns:

  • (String)


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