Class: Aws::Route53Resolver::Types::AssociateResolverRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::AssociateResolverRuleRequest
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A name for the association that you're creating between a Resolver rule and a VPC.
-
#resolver_rule_id ⇒ String
The ID of the Resolver rule that you want to associate with the VPC.
-
#vpc_id ⇒ String
The ID of the VPC that you want to associate the Resolver rule with.
Instance Attribute Details
#name ⇒ String
A name for the association that you're creating between a Resolver rule and a VPC.
The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 201 class AssociateResolverRuleRequest < Struct.new( :resolver_rule_id, :name, :vpc_id) SENSITIVE = [] include Aws::Structure end |
#resolver_rule_id ⇒ String
The ID of the Resolver rule that you want to associate with the VPC. To list the existing Resolver rules, use ListResolverRules.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 201 class AssociateResolverRuleRequest < Struct.new( :resolver_rule_id, :name, :vpc_id) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the VPC that you want to associate the Resolver rule with.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 201 class AssociateResolverRuleRequest < Struct.new( :resolver_rule_id, :name, :vpc_id) SENSITIVE = [] include Aws::Structure end |