Class: Aws::Lambda::Types::PropagateTags
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::PropagateTags
- 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
-
#explicit_tags ⇒ Hash<String,String>
A list of tags to apply to managed resources when
Modeis set toExplicit. -
#mode ⇒ String
The tag propagation mode.
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.
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.
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 |