Interface ConfigurationTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurationTag.Builder,ConfigurationTag>,SdkBuilder<ConfigurationTag.Builder,ConfigurationTag>,SdkPojo
- Enclosing class:
- ConfigurationTag
public static interface ConfigurationTag.Builder extends SdkPojo, CopyableBuilder<ConfigurationTag.Builder,ConfigurationTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationTag.BuilderconfigurationId(String configurationId)The configuration ID for the item to tag.ConfigurationTag.BuilderconfigurationType(String configurationType)A type of IT asset to tag.ConfigurationTag.BuilderconfigurationType(ConfigurationItemType configurationType)A type of IT asset to tag.ConfigurationTag.Builderkey(String key)A type of tag on which to filter.ConfigurationTag.BuildertimeOfCreation(Instant timeOfCreation)The time the configuration tag was created in Coordinated Universal Time (UTC).ConfigurationTag.Buildervalue(String value)A value on which to filter.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
configurationType
ConfigurationTag.Builder configurationType(String configurationType)
A type of IT asset to tag.
- Parameters:
configurationType- A type of IT asset to tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationItemType,ConfigurationItemType
-
configurationType
ConfigurationTag.Builder configurationType(ConfigurationItemType configurationType)
A type of IT asset to tag.
- Parameters:
configurationType- A type of IT asset to tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationItemType,ConfigurationItemType
-
configurationId
ConfigurationTag.Builder configurationId(String configurationId)
The configuration ID for the item to tag. You can specify a list of keys and values.
- Parameters:
configurationId- The configuration ID for the item to tag. You can specify a list of keys and values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
ConfigurationTag.Builder key(String key)
A type of tag on which to filter. For example, serverType.
- Parameters:
key- A type of tag on which to filter. For example, serverType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ConfigurationTag.Builder value(String value)
A value on which to filter. For example key = serverType and value = web server.
- Parameters:
value- A value on which to filter. For example key = serverType and value = web server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeOfCreation
ConfigurationTag.Builder timeOfCreation(Instant timeOfCreation)
The time the configuration tag was created in Coordinated Universal Time (UTC).
- Parameters:
timeOfCreation- The time the configuration tag was created in Coordinated Universal Time (UTC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-