Interface Environment
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Environment.Jsii$Proxy
Example:
Stack stack1 = Stack.Builder.create(app, "Stack1")
.env(Environment.builder()
.region("us-east-1")
.build())
.build();
Certificate cert = Certificate.Builder.create(stack1, "Cert")
.domainName("*.example.com")
.validation(CertificateValidation.fromDns(PublicHostedZone.fromHostedZoneId(stack1, "Zone", "Z0329774B51CGXTDQV3X")))
.build();
Stack stack2 = Stack.Builder.create(app, "Stack2")
.env(Environment.builder()
.region("us-east-2")
.build())
.build();
Distribution.Builder.create(stack2, "Distribution")
.defaultBehavior(BehaviorOptions.builder()
.origin(new HttpOrigin("example.com"))
.build())
.domainNames(List.of("dev.example.com"))
.certificate(cert)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEnvironmentstatic final classAn implementation forEnvironment -
Method Summary
Modifier and TypeMethodDescriptionstatic Environment.Builderbuilder()default StringThe AWS account ID for this environment.default StringThe AWS region for this environment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccount
The AWS account ID for this environment.This can be either a concrete value such as
585191031104orAws.ACCOUNT_IDwhich indicates that account ID will only be determined during deployment (it will resolve to the CloudFormation intrinsic{"Ref":"AWS::AccountId"}). Note that certain features, such as cross-stack references and environmental context providers require concrete region information and will cause this stack to emit synthesis errors.Default: Aws.ACCOUNT_ID which means that the stack will be account-agnostic.
-
getRegion
The AWS region for this environment.This can be either a concrete value such as
eu-west-2orAws.REGIONwhich indicates that account ID will only be determined during deployment (it will resolve to the CloudFormation intrinsic{"Ref":"AWS::Region"}). Note that certain features, such as cross-stack references and environmental context providers require concrete region information and will cause this stack to emit synthesis errors.Default: Aws.REGION which means that the stack will be region-agnostic.
-
builder
- Returns:
- a
Environment.BuilderofEnvironment
-