Interface CfnOutpostResolverMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOutpostResolverMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:25.909Z")
@Stability(Stable)
public interface CfnOutpostResolverMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnOutpostResolverPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.route53resolver.*;
CfnOutpostResolverMixinProps cfnOutpostResolverMixinProps = CfnOutpostResolverMixinProps.builder()
.instanceCount(123)
.name("name")
.outpostArn("outpostArn")
.preferredInstanceType("preferredInstanceType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOutpostResolverMixinPropsstatic final classAn implementation forCfnOutpostResolverMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberAmazon EC2 instance count for the Resolver on the Outpost.default StringgetName()Name of the Resolver.default StringThe ARN (Amazon Resource Name) for the Outpost.default StringThe Amazon EC2 instance type.getTags()A key value pair that helps you identify a RouteĀ 53 Resolver .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceCount
Amazon EC2 instance count for the Resolver on the Outpost.- See Also:
-
getName
Name of the Resolver.- See Also:
-
getOutpostArn
The ARN (Amazon Resource Name) for the Outpost.- See Also:
-
getPreferredInstanceType
The Amazon EC2 instance type.If you specify this, you must also specify a value for the
OutpostArn.- See Also:
-
getTags
A key value pair that helps you identify a RouteĀ 53 Resolver .- See Also:
-
builder
-