@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.372Z") @Stability(value=Stable) public class CfnVPCDHCPOptionsAssociation extends CfnResource implements IInspectable
Associates a set of DHCP options with a VPC, or associates no DHCP options with the VPC.
After you associate the options with the VPC, any existing instances and all new instances that you launch in that VPC use the options. You don't need to restart or relaunch the instances. They automatically pick up the changes within a few hours, depending on how frequently the instance renews its DHCP lease. You can explicitly renew the lease using the operating system on the instance.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ec2.*;
CfnVPCDHCPOptionsAssociation cfnVPCDHCPOptionsAssociation = CfnVPCDHCPOptionsAssociation.Builder.create(this, "MyCfnVPCDHCPOptionsAssociation")
.dhcpOptionsId("dhcpOptionsId")
.vpcId("vpcId")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnVPCDHCPOptionsAssociation.Builder
A fluent builder for
CfnVPCDHCPOptionsAssociation. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnVPCDHCPOptionsAssociation(software.constructs.Construct scope,
String id,
CfnVPCDHCPOptionsAssociationProps props)
Create a new `AWS::EC2::VPCDHCPOptionsAssociation`.
|
protected |
CfnVPCDHCPOptionsAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnVPCDHCPOptionsAssociation(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrId()
The ID of the DHCP options set.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getDhcpOptionsId()
The ID of the DHCP options set, or `default` to associate no DHCP options with the VPC.
|
String |
getVpcId()
The ID of the VPC.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDhcpOptionsId(String value)
The ID of the DHCP options set, or `default` to associate no DHCP options with the VPC.
|
void |
setVpcId(String value)
The ID of the VPC.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnVPCDHCPOptionsAssociation(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnVPCDHCPOptionsAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnVPCDHCPOptionsAssociation(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnVPCDHCPOptionsAssociationProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public String getDhcpOptionsId()
@Stability(value=Stable)
public void setDhcpOptionsId(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getVpcId()
@Stability(value=Stable)
public void setVpcId(@NotNull
String value)
Copyright © 2022. All rights reserved.