Package software.amazon.awscdk.core
Interface ResourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ResourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.105Z")
@Stability(Stable)
public interface ResourceProps
extends software.amazon.jsii.JsiiSerializable
Construction properties for
Resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
ResourceProps resourceProps = ResourceProps.builder()
.account("account")
.environmentFromArn("environmentFromArn")
.physicalName("physicalName")
.region("region")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forResourcePropsstatic final classAn implementation forResourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic ResourceProps.Builderbuilder()default StringThe AWS account ID this resource belongs to.default StringARN to deduce region and account from.default StringThe value passed in by users to the physical name prop of the resource.default StringThe AWS region this resource belongs to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccount
The AWS account ID this resource belongs to.Default: - the resource is in the same account as the stack it belongs to
-
getEnvironmentFromArn
ARN to deduce region and account from.The ARN is parsed and the account and region are taken from the ARN. This should be used for imported resources.
Cannot be supplied together with either
accountorregion.Default: - take environment from `account`, `region` parameters, or use Stack environment.
-
getPhysicalName
The value passed in by users to the physical name prop of the resource.undefinedimplies that a physical name will be allocated by CloudFormation during deployment.- a concrete value implies a specific physical name
PhysicalName.GENERATE_IF_NEEDEDis a marker that indicates that a physical will only be generated by the CDK if it is needed for cross-environment references. Otherwise, it will be allocated by CloudFormation.
Default: - The physical name will be allocated by CloudFormation at deployment time
-
getRegion
The AWS region this resource belongs to.Default: - the resource is in the same region as the stack it belongs to
-
builder
- Returns:
- a
ResourceProps.BuilderofResourceProps
-