Class FirewallRuleGroupAssociation
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.route53resolver.alpha.FirewallRuleGroupAssociation
- All Implemented Interfaces:
IResource
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:18.584Z")
@Stability(Experimental)
public class FirewallRuleGroupAssociation
extends Resource
(experimental) A Firewall Rule Group Association.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.route53resolver.alpha.*; import software.amazon.awscdk.services.ec2.*; FirewallRuleGroup firewallRuleGroup; Vpc vpc; FirewallRuleGroupAssociation firewallRuleGroupAssociation = FirewallRuleGroupAssociation.Builder.create(this, "MyFirewallRuleGroupAssociation") .firewallRuleGroup(firewallRuleGroup) .priority(123) .vpc(vpc) // the properties below are optional .mutationProtection(false) .name("name") .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forFirewallRuleGroupAssociation
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
FirewallRuleGroupAssociation
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
FirewallRuleGroupAssociation
(software.amazon.jsii.JsiiObjectRef objRef) FirewallRuleGroupAssociation
(software.constructs.Construct scope, String id, FirewallRuleGroupAssociationProps props) -
Method Summary
Modifier and TypeMethodDescription(experimental) The ARN (Amazon Resource Name) of the association.(experimental) The date and time that the association was created.(experimental) The creator request ID.(experimental) The ID of the association.(experimental) The owner of the association, used only for lists that are not managed by you.(experimental) The date and time that the association was last modified.(experimental) The status of the association.(experimental) Additional information about the status of the association.Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
FirewallRuleGroupAssociation
protected FirewallRuleGroupAssociation(software.amazon.jsii.JsiiObjectRef objRef) -
FirewallRuleGroupAssociation
protected FirewallRuleGroupAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FirewallRuleGroupAssociation
@Stability(Experimental) public FirewallRuleGroupAssociation(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FirewallRuleGroupAssociationProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
getFirewallRuleGroupAssociationArn
(experimental) The ARN (Amazon Resource Name) of the association. -
getFirewallRuleGroupAssociationCreationTime
(experimental) The date and time that the association was created. -
getFirewallRuleGroupAssociationCreatorRequestId
(experimental) The creator request ID. -
getFirewallRuleGroupAssociationId
(experimental) The ID of the association. -
getFirewallRuleGroupAssociationManagedOwnerName
(experimental) The owner of the association, used only for lists that are not managed by you.If you use AWS Firewall Manager to manage your firewallls from DNS Firewall, then this reports Firewall Manager as the managed owner.
-
getFirewallRuleGroupAssociationModificationTime
(experimental) The date and time that the association was last modified. -
getFirewallRuleGroupAssociationStatus
(experimental) The status of the association. -
getFirewallRuleGroupAssociationStatusMessage
(experimental) Additional information about the status of the association.
-