CfnOutpostResolverProps
- class aws_cdk.aws_route53resolver.CfnOutpostResolverProps(*, name, outpost_arn, preferred_instance_type, instance_count=None, tags=None)
Bases:
objectProperties for defining a
CfnOutpostResolver.- Parameters:
name (
str) – Name of the Resolver.outpost_arn (
str) – The ARN (Amazon Resource Name) for the Outpost.preferred_instance_type (
str) – The Amazon EC2 instance type. If you specify this, you must also specify a value for theOutpostArn.instance_count (
Union[int,float,None]) – Amazon EC2 instance count for the Resolver on the Outpost.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A key value pair that helps you identify a Route 53 Resolver .
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53resolver as route53resolver cfn_outpost_resolver_props = route53resolver.CfnOutpostResolverProps( name="name", outpost_arn="outpostArn", preferred_instance_type="preferredInstanceType", # the properties below are optional instance_count=123, tags=[CfnTag( key="key", value="value" )] )
Attributes
- instance_count
Amazon EC2 instance count for the Resolver on the Outpost.
- name
Name of the Resolver.
- outpost_arn
The ARN (Amazon Resource Name) for the Outpost.
- preferred_instance_type
The Amazon EC2 instance type.
If you specify this, you must also specify a value for the
OutpostArn.
- tags
A key value pair that helps you identify a Route 53 Resolver .