@Generated(value="software.amazon.awssdk:codegen") public final class UpdateLayerRequest extends OpsWorksRequest implements ToCopyableBuilder<UpdateLayerRequest.Builder,UpdateLayerRequest>
Modifier and Type | Class and Description |
---|---|
static interface |
UpdateLayerRequest.Builder |
Modifier and Type | Method and Description |
---|---|
Map<LayerAttributesKeys,String> |
attributes()
One or more user-defined key/value pairs to be added to the stack attributes.
|
Map<String,String> |
attributesAsStrings()
One or more user-defined key/value pairs to be added to the stack attributes.
|
Boolean |
autoAssignElasticIps()
Whether to automatically assign an Elastic IP address to
the layer's instances.
|
Boolean |
autoAssignPublicIps()
For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's
instances.
|
static UpdateLayerRequest.Builder |
builder() |
CloudWatchLogsConfiguration |
cloudWatchLogsConfiguration()
Specifies CloudWatch Logs configuration options for the layer.
|
String |
customInstanceProfileArn()
The ARN of an IAM profile to be used for all of the layer's EC2 instances.
|
String |
customJson()
A JSON-formatted string containing custom stack configuration and deployment attributes to be installed on the
layer's instances.
|
Recipes |
customRecipes()
A
LayerCustomRecipes object that specifies the layer's custom recipes. |
List<String> |
customSecurityGroupIds()
An array containing the layer's custom security group IDs.
|
Boolean |
enableAutoHealing()
Whether to disable auto healing for the layer.
|
boolean |
equals(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz)
Used to retrieve the value of a field from any class that extends
SdkRequest . |
int |
hashCode() |
Boolean |
installUpdatesOnBoot()
Whether to install operating system and package updates when the instance boots.
|
String |
layerId()
The layer ID.
|
LifecycleEventConfiguration |
lifecycleEventConfiguration()
|
String |
name()
The layer name, which is used by the console.
|
List<String> |
packages()
An array of
Package objects that describe the layer's packages. |
List<SdkField<?>> |
sdkFields() |
static Class<? extends UpdateLayerRequest.Builder> |
serializableBuilderClass() |
String |
shortname()
For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS
OpsWorks Stacks and by Chef.
|
UpdateLayerRequest.Builder |
toBuilder()
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
Boolean |
useEbsOptimizedInstances()
Whether to use Amazon EBS-optimized instances.
|
List<VolumeConfiguration> |
volumeConfigurations()
A
VolumeConfigurations object that describes the layer's Amazon EBS volumes. |
overrideConfiguration
copy
public String layerId()
The layer ID.
public String name()
The layer name, which is used by the console.
public String shortname()
For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\A[a-z0-9\-\_\.]+\Z/.
The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference
The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference
public Map<LayerAttributesKeys,String> attributes()
One or more user-defined key/value pairs to be added to the stack attributes.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public Map<String,String> attributesAsStrings()
One or more user-defined key/value pairs to be added to the stack attributes.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public CloudWatchLogsConfiguration cloudWatchLogsConfiguration()
Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.
public String customInstanceProfileArn()
The ARN of an IAM profile to be used for all of the layer's EC2 instances. For more information about IAM ARNs, see Using Identifiers.
public String customJson()
A JSON-formatted string containing custom stack configuration and deployment attributes to be installed on the layer's instances. For more information, see Using Custom JSON.
public List<String> customSecurityGroupIds()
An array containing the layer's custom security group IDs.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
public List<String> packages()
An array of Package
objects that describe the layer's packages.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
Package
objects that describe the layer's packages.public List<VolumeConfiguration> volumeConfigurations()
A VolumeConfigurations
object that describes the layer's Amazon EBS volumes.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
VolumeConfigurations
object that describes the layer's Amazon EBS volumes.public Boolean enableAutoHealing()
Whether to disable auto healing for the layer.
public Boolean autoAssignElasticIps()
Whether to automatically assign an Elastic IP address to the layer's instances. For more information, see How to Edit a Layer.
public Boolean autoAssignPublicIps()
For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see How to Edit a Layer.
public Recipes customRecipes()
A LayerCustomRecipes
object that specifies the layer's custom recipes.
LayerCustomRecipes
object that specifies the layer's custom recipes.public Boolean installUpdatesOnBoot()
Whether to install operating system and package updates when the instance boots. The default value is
true
. To control when updates are installed, set this value to false
. You must then
update your instances manually by using CreateDeployment to run the update_dependencies
stack
command or manually running yum
(Amazon Linux) or apt-get
(Ubuntu) on the instances.
We strongly recommend using the default value of true
, to ensure that your instances have the latest
security updates.
true
. To control when updates are installed, set this value to false
. You must
then update your instances manually by using CreateDeployment to run the
update_dependencies
stack command or manually running yum
(Amazon Linux) or
apt-get
(Ubuntu) on the instances.
We strongly recommend using the default value of true
, to ensure that your instances have
the latest security updates.
public Boolean useEbsOptimizedInstances()
Whether to use Amazon EBS-optimized instances.
public LifecycleEventConfiguration lifecycleEventConfiguration()
public UpdateLayerRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<UpdateLayerRequest.Builder,UpdateLayerRequest>
toBuilder
in class OpsWorksRequest
public static UpdateLayerRequest.Builder builder()
public static Class<? extends UpdateLayerRequest.Builder> serializableBuilderClass()
public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
SdkRequest
SdkRequest
. The field name
specified should match the member name from the corresponding service-2.json model specified in the
codegen-resources folder for a given service. The class specifies what class to cast the returned value to.
If the returned value is also a modeled class, the SdkRequest.getValueForField(String, Class)
method will
again be available.getValueForField
in class SdkRequest
fieldName
- The name of the member to be retrieved.clazz
- The class to cast the returned object to.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.