Interface CfnGatewayRule.ConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRule.ConditionProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRule
@Stability(Stable)
public static interface CfnGatewayRule.ConditionProperty
extends software.amazon.jsii.JsiiSerializable
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.bedrockagentcore.*;
ConditionProperty conditionProperty = ConditionProperty.builder()
.matchPaths(MatchPathsProperty.builder()
.anyOf(List.of("anyOf"))
.build())
.matchPrincipals(MatchPrincipalsProperty.builder()
.anyOf(List.of(MatchPrincipalEntryProperty.builder()
.iamPrincipal(IamPrincipalProperty.builder()
.arn("arn")
// the properties below are optional
.operator("operator")
.build())
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayRule.ConditionPropertystatic final classAn implementation forCfnGatewayRule.ConditionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnGatewayRule.MatchPathsPropertydefault ObjectReturns union: eitherIResolvableorCfnGatewayRule.MatchPrincipalsPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatchPaths
Returns union: eitherIResolvableorCfnGatewayRule.MatchPathsProperty- See Also:
-
getMatchPrincipals
Returns union: eitherIResolvableorCfnGatewayRule.MatchPrincipalsProperty- See Also:
-
builder
-