Interface Ec2Metadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Ec2Metadata.Builder,Ec2Metadata>,SdkBuilder<Ec2Metadata.Builder,Ec2Metadata>,SdkPojo
- Enclosing class:
- Ec2Metadata
public static interface Ec2Metadata.Builder extends SdkPojo, CopyableBuilder<Ec2Metadata.Builder,Ec2Metadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ec2Metadata.BuilderamiId(String amiId)The ID of the Amazon Machine Image (AMI) used to launch the instance.Ec2Metadata.Builderplatform(String platform)The platform of the instance.Ec2Metadata.Builderplatform(Ec2Platform platform)The platform of the instance.Ec2Metadata.Buildertags(Map<String,String> tags)The tags attached to the instance.-
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
-
amiId
Ec2Metadata.Builder amiId(String amiId)
The ID of the Amazon Machine Image (AMI) used to launch the instance.
- Parameters:
amiId- The ID of the Amazon Machine Image (AMI) used to launch the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
platform
Ec2Metadata.Builder platform(String platform)
The platform of the instance.
- Parameters:
platform- The platform of the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Ec2Platform,Ec2Platform
-
platform
Ec2Metadata.Builder platform(Ec2Platform platform)
The platform of the instance.
- Parameters:
platform- The platform of the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Ec2Platform,Ec2Platform
-
tags
Ec2Metadata.Builder tags(Map<String,String> tags)
The tags attached to the instance.
- Parameters:
tags- The tags attached to the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-