Class: Aws::Lambda::Types::PropagateTags

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Configuration for tag propagation to managed resources launched by the capacity provider.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#explicit_tags ⇒ Hash<String,String>

A list of tags to apply to managed resources when Mode is set to Explicit. You can specify up to 40 tags.

Returns:

  • (Hash<String,String>)


7685
7686
7687
7688
7689
7690
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7685

class PropagateTags < Struct.new(
  :mode,
  :explicit_tags)
  SENSITIVE = []
  include Aws::Structure
end

#mode ⇒ String

The tag propagation mode. Set to Explicit to propagate the tags specified in ExplicitTags to managed resources. Set to None to disable tag propagation.

Returns:

  • (String)


7685
7686
7687
7688
7689
7690
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7685

class PropagateTags < Struct.new(
  :mode,
  :explicit_tags)
  SENSITIVE = []
  include Aws::Structure
end