Interface CfnResourceShareProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceShareProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:51:03.883Z")
@Stability(Stable)
public interface CfnResourceShareProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnResourceShare
.
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.ram.*; CfnResourceShareProps cfnResourceShareProps = CfnResourceShareProps.builder() .name("name") // the properties below are optional .allowExternalPrincipals(false) .permissionArns(List.of("permissionArns")) .principals(List.of("principals")) .resourceArns(List.of("resourceArns")) .sources(List.of("sources")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceShareProps
static final class
An implementation forCfnResourceShareProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Specifies whether principals outside your organization in AWS Organizations can be associated with a resource share.getName()
Specifies the name of the resource share.Specifies the Amazon Resource Names (ARNs) of the AWS RAM permission to associate with the resource share.Specifies the principals to associate with the resource share.Specifies a list of one or more ARNs of the resources to associate with the resource share.getTags()
Specifies one or more tags to attach to the resource share itself.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Specifies the name of the resource share.- See Also:
-
getAllowExternalPrincipals
Specifies whether principals outside your organization in AWS Organizations can be associated with a resource share.A value of
true
lets you share with individual AWS accounts that are not in your organization. A value offalse
only has meaning if your account is a member of an AWS Organization. The default value istrue
.- See Also:
-
getPermissionArns
Specifies the Amazon Resource Names (ARNs) of the AWS RAM permission to associate with the resource share. If you do not specify an ARN for the permission, AWS RAM automatically attaches the default version of the permission for each resource type. You can associate only one permission with each resource type included in the resource share.- See Also:
-
getPrincipals
Specifies the principals to associate with the resource share. The possible values are:.- An AWS account ID
- An Amazon Resource Name (ARN) of an organization in AWS Organizations
- An ARN of an organizational unit (OU) in AWS Organizations
- An ARN of an IAM role
- An ARN of an IAM user
Not all resource types can be shared with IAM roles and users. For more information, see the column Can share with IAM roles and users in the tables on Shareable AWS resources in the AWS Resource Access Manager User Guide .
- See Also:
-
getResourceArns
Specifies a list of one or more ARNs of the resources to associate with the resource share.- See Also:
-
getSources
- See Also:
-
getTags
Specifies one or more tags to attach to the resource share itself.It doesn't attach the tags to the resources associated with the resource share.
- See Also:
-
builder
- Returns:
- a
CfnResourceShareProps.Builder
ofCfnResourceShareProps
-