CfnOutpostResolverMixinProps
- class aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnOutpostResolverMixinProps(*, instance_count=None, name=None, outpost_arn=None, preferred_instance_type=None, tags=None)
Bases:
objectProperties for CfnOutpostResolverPropsMixin.
- Parameters:
instance_count (
Union[int,float,None]) – Amazon EC2 instance count for the Resolver on the Outpost.name (
Optional[str]) – Name of the Resolver.outpost_arn (
Optional[str]) – The ARN (Amazon Resource Name) for the Outpost.preferred_instance_type (
Optional[str]) – The Amazon EC2 instance type. If you specify this, you must also specify a value for theOutpostArn.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.mixins_preview.aws_route53resolver import mixins as route53resolver_mixins cfn_outpost_resolver_mixin_props = route53resolver_mixins.CfnOutpostResolverMixinProps( instance_count=123, name="name", outpost_arn="outpostArn", preferred_instance_type="preferredInstanceType", 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 .