We recommend new projects start with resources from the AWS provider.
aws-native.ram.ResourceShare
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
Resource type definition for AWS::RAM::ResourceShare
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myresourceshare = new AwsNative.Ram.ResourceShare("myresourceshare", new()
{
Name = "My Resource Share",
ResourceArns = new[]
{
"arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678",
},
Principals = new[]
{
"210987654321",
},
Tags = new[]
{
new AwsNative.Inputs.TagArgs
{
Key = "Key1",
Value = "Value1",
},
new AwsNative.Inputs.TagArgs
{
Key = "Key2",
Value = "Value2",
},
},
});
});
package main
import (
awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/ram"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ram.NewResourceShare(ctx, "myresourceshare", &ram.ResourceShareArgs{
Name: pulumi.String("My Resource Share"),
ResourceArns: pulumi.StringArray{
pulumi.String("arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"),
},
Principals: pulumi.StringArray{
pulumi.String("210987654321"),
},
Tags: aws.TagArray{
&aws.TagArgs{
Key: pulumi.String("Key1"),
Value: pulumi.String("Value1"),
},
&aws.TagArgs{
Key: pulumi.String("Key2"),
Value: pulumi.String("Value2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myresourceshare = new aws_native.ram.ResourceShare("myresourceshare", {
name: "My Resource Share",
resourceArns: ["arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"],
principals: ["210987654321"],
tags: [
{
key: "Key1",
value: "Value1",
},
{
key: "Key2",
value: "Value2",
},
],
});
import pulumi
import pulumi_aws_native as aws_native
myresourceshare = aws_native.ram.ResourceShare("myresourceshare",
name="My Resource Share",
resource_arns=["arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"],
principals=["210987654321"],
tags=[
{
"key": "Key1",
"value": "Value1",
},
{
"key": "Key2",
"value": "Value2",
},
])
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myresourceshare = new AwsNative.Ram.ResourceShare("myresourceshare", new()
{
Name = "My Resource Share",
ResourceArns = new[]
{
"arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678",
},
Principals = new[]
{
"210987654321",
},
Tags = new[]
{
new AwsNative.Inputs.TagArgs
{
Key = "Key1",
Value = "Value1",
},
new AwsNative.Inputs.TagArgs
{
Key = "Key2",
Value = "Value2",
},
},
});
});
package main
import (
awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/ram"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ram.NewResourceShare(ctx, "myresourceshare", &ram.ResourceShareArgs{
Name: pulumi.String("My Resource Share"),
ResourceArns: pulumi.StringArray{
pulumi.String("arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"),
},
Principals: pulumi.StringArray{
pulumi.String("210987654321"),
},
Tags: aws.TagArray{
&aws.TagArgs{
Key: pulumi.String("Key1"),
Value: pulumi.String("Value1"),
},
&aws.TagArgs{
Key: pulumi.String("Key2"),
Value: pulumi.String("Value2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myresourceshare = new aws_native.ram.ResourceShare("myresourceshare", {
name: "My Resource Share",
resourceArns: ["arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"],
principals: ["210987654321"],
tags: [
{
key: "Key1",
value: "Value1",
},
{
key: "Key2",
value: "Value2",
},
],
});
import pulumi
import pulumi_aws_native as aws_native
myresourceshare = aws_native.ram.ResourceShare("myresourceshare",
name="My Resource Share",
resource_arns=["arn:aws:ec2:us-east-1:123456789012:resource-type/12345678-1234-1234-1234-12345678"],
principals=["210987654321"],
tags=[
{
"key": "Key1",
"value": "Value1",
},
{
"key": "Key2",
"value": "Value2",
},
])
Coming soon!
Create ResourceShare Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceShare(name: string, args?: ResourceShareArgs, opts?: CustomResourceOptions);
@overload
def ResourceShare(resource_name: str,
args: Optional[ResourceShareArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceShare(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_external_principals: Optional[bool] = None,
name: Optional[str] = None,
permission_arns: Optional[Sequence[str]] = None,
principals: Optional[Sequence[str]] = None,
resource_arns: Optional[Sequence[str]] = None,
sources: Optional[Sequence[str]] = None,
tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
func NewResourceShare(ctx *Context, name string, args *ResourceShareArgs, opts ...ResourceOption) (*ResourceShare, error)
public ResourceShare(string name, ResourceShareArgs? args = null, CustomResourceOptions? opts = null)
public ResourceShare(String name, ResourceShareArgs args)
public ResourceShare(String name, ResourceShareArgs args, CustomResourceOptions options)
type: aws-native:ram:ResourceShare
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ResourceShare Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ResourceShare resource accepts the following input properties:
- Allow
External boolPrincipals - 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
. - Name string
- Specifies the name of the resource share.
- Permission
Arns List<string> - 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.
- Principals List<string>
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
- Resource
Arns List<string> - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- Sources List<string>
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- List<Pulumi.
Aws Native. Inputs. Tag> - 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.
- Allow
External boolPrincipals - 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
. - Name string
- Specifies the name of the resource share.
- Permission
Arns []string - 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.
- Principals []string
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
- Resource
Arns []string - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- Sources []string
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- Tag
Args - 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.
- allow
External BooleanPrincipals - 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
. - name String
- Specifies the name of the resource share.
- permission
Arns List<String> - 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.
- principals List<String>
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
- resource
Arns List<String> - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- sources List<String>
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- List<Tag>
- 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.
- allow
External booleanPrincipals - 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
. - name string
- Specifies the name of the resource share.
- permission
Arns string[] - 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.
- principals string[]
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
- resource
Arns string[] - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- sources string[]
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- Tag[]
- 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.
- allow_
external_ boolprincipals - 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
. - name str
- Specifies the name of the resource share.
- permission_
arns Sequence[str] - 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.
- principals Sequence[str]
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
- resource_
arns Sequence[str] - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- sources Sequence[str]
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- Sequence[Tag
Args] - 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.
- allow
External BooleanPrincipals - 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
. - name String
- Specifies the name of the resource share.
- permission
Arns List<String> - 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.
- principals List<String>
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
- resource
Arns List<String> - Specifies a list of one or more ARNs of the resources to associate with the resource share.
- sources List<String>
- Specifies from which source accounts the service principal has access to the resources in this resource share.
- List<Property Map>
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceShare resource produces the following output properties:
Supporting Types
Tag, TagArgs
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.