Try AWS Native preview for resources not in the classic version.
aws.licensemanager.LicenseGrant
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a License Manager grant. This allows for sharing licenses with other AWS accounts.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
test:
type: aws:licensemanager:LicenseGrant
properties:
name: share-license-with-account
allowedOperations:
- ListPurchasedLicenses
- CheckoutLicense
- CheckInLicense
- ExtendConsumptionLicense
- CreateToken
licenseArn: arn:aws:license-manager::111111111111:license:l-exampleARN
principal: arn:aws:iam::111111111112:root
homeRegion: us-east-1
Create LicenseGrant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LicenseGrant(name: string, args: LicenseGrantArgs, opts?: CustomResourceOptions);
@overload
def LicenseGrant(resource_name: str,
args: LicenseGrantArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LicenseGrant(resource_name: str,
opts: Optional[ResourceOptions] = None,
allowed_operations: Optional[Sequence[str]] = None,
license_arn: Optional[str] = None,
principal: Optional[str] = None,
name: Optional[str] = None)
func NewLicenseGrant(ctx *Context, name string, args LicenseGrantArgs, opts ...ResourceOption) (*LicenseGrant, error)
public LicenseGrant(string name, LicenseGrantArgs args, CustomResourceOptions? opts = null)
public LicenseGrant(String name, LicenseGrantArgs args)
public LicenseGrant(String name, LicenseGrantArgs args, CustomResourceOptions options)
type: aws:licensemanager:LicenseGrant
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 LicenseGrantArgs
- 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 LicenseGrantArgs
- 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 LicenseGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LicenseGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LicenseGrantArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var licenseGrantResource = new Aws.LicenseManager.LicenseGrant("licenseGrantResource", new()
{
AllowedOperations = new[]
{
"string",
},
LicenseArn = "string",
Principal = "string",
Name = "string",
});
example, err := licensemanager.NewLicenseGrant(ctx, "licenseGrantResource", &licensemanager.LicenseGrantArgs{
AllowedOperations: pulumi.StringArray{
pulumi.String("string"),
},
LicenseArn: pulumi.String("string"),
Principal: pulumi.String("string"),
Name: pulumi.String("string"),
})
var licenseGrantResource = new LicenseGrant("licenseGrantResource", LicenseGrantArgs.builder()
.allowedOperations("string")
.licenseArn("string")
.principal("string")
.name("string")
.build());
license_grant_resource = aws.licensemanager.LicenseGrant("licenseGrantResource",
allowed_operations=["string"],
license_arn="string",
principal="string",
name="string")
const licenseGrantResource = new aws.licensemanager.LicenseGrant("licenseGrantResource", {
allowedOperations: ["string"],
licenseArn: "string",
principal: "string",
name: "string",
});
type: aws:licensemanager:LicenseGrant
properties:
allowedOperations:
- string
licenseArn: string
name: string
principal: string
LicenseGrant Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LicenseGrant resource accepts the following input properties:
- Allowed
Operations List<string> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- License
Arn string - The ARN of the license to grant.
- Principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- Name string
- The Name of the grant.
- Allowed
Operations []string - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- License
Arn string - The ARN of the license to grant.
- Principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- Name string
- The Name of the grant.
- allowed
Operations List<String> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- license
Arn String - The ARN of the license to grant.
- principal String
- The target account for the grant in the form of the ARN for an account principal of the root user.
- name String
- The Name of the grant.
- allowed
Operations string[] - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- license
Arn string - The ARN of the license to grant.
- principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- name string
- The Name of the grant.
- allowed_
operations Sequence[str] - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- license_
arn str - The ARN of the license to grant.
- principal str
- The target account for the grant in the form of the ARN for an account principal of the root user.
- name str
- The Name of the grant.
- allowed
Operations List<String> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- license
Arn String - The ARN of the license to grant.
- principal String
- The target account for the grant in the form of the ARN for an account principal of the root user.
- name String
- The Name of the grant.
Outputs
All input properties are implicitly available as output properties. Additionally, the LicenseGrant resource produces the following output properties:
- arn str
- The grant ARN.
- home_
region str - The home region for the license.
- id str
- The provider-assigned unique ID for this managed resource.
- parent_
arn str - The parent ARN.
- status str
- The grant status.
- version str
- The grant version.
Look up Existing LicenseGrant Resource
Get an existing LicenseGrant resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: LicenseGrantState, opts?: CustomResourceOptions): LicenseGrant
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allowed_operations: Optional[Sequence[str]] = None,
arn: Optional[str] = None,
home_region: Optional[str] = None,
license_arn: Optional[str] = None,
name: Optional[str] = None,
parent_arn: Optional[str] = None,
principal: Optional[str] = None,
status: Optional[str] = None,
version: Optional[str] = None) -> LicenseGrant
func GetLicenseGrant(ctx *Context, name string, id IDInput, state *LicenseGrantState, opts ...ResourceOption) (*LicenseGrant, error)
public static LicenseGrant Get(string name, Input<string> id, LicenseGrantState? state, CustomResourceOptions? opts = null)
public static LicenseGrant get(String name, Output<String> id, LicenseGrantState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allowed
Operations List<string> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- Arn string
- The grant ARN.
- Home
Region string - The home region for the license.
- License
Arn string - The ARN of the license to grant.
- Name string
- The Name of the grant.
- Parent
Arn string - The parent ARN.
- Principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- Status string
- The grant status.
- Version string
- The grant version.
- Allowed
Operations []string - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- Arn string
- The grant ARN.
- Home
Region string - The home region for the license.
- License
Arn string - The ARN of the license to grant.
- Name string
- The Name of the grant.
- Parent
Arn string - The parent ARN.
- Principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- Status string
- The grant status.
- Version string
- The grant version.
- allowed
Operations List<String> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- arn String
- The grant ARN.
- home
Region String - The home region for the license.
- license
Arn String - The ARN of the license to grant.
- name String
- The Name of the grant.
- parent
Arn String - The parent ARN.
- principal String
- The target account for the grant in the form of the ARN for an account principal of the root user.
- status String
- The grant status.
- version String
- The grant version.
- allowed
Operations string[] - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- arn string
- The grant ARN.
- home
Region string - The home region for the license.
- license
Arn string - The ARN of the license to grant.
- name string
- The Name of the grant.
- parent
Arn string - The parent ARN.
- principal string
- The target account for the grant in the form of the ARN for an account principal of the root user.
- status string
- The grant status.
- version string
- The grant version.
- allowed_
operations Sequence[str] - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- arn str
- The grant ARN.
- home_
region str - The home region for the license.
- license_
arn str - The ARN of the license to grant.
- name str
- The Name of the grant.
- parent_
arn str - The parent ARN.
- principal str
- The target account for the grant in the form of the ARN for an account principal of the root user.
- status str
- The grant status.
- version str
- The grant version.
- allowed
Operations List<String> - A list of the allowed operations for the grant. This is a subset of the allowed operations on the license.
- arn String
- The grant ARN.
- home
Region String - The home region for the license.
- license
Arn String - The ARN of the license to grant.
- name String
- The Name of the grant.
- parent
Arn String - The parent ARN.
- principal String
- The target account for the grant in the form of the ARN for an account principal of the root user.
- status String
- The grant status.
- version String
- The grant version.
Import
Using pulumi import
, import aws_licensemanager_grant
using the grant arn. For example:
$ pulumi import aws:licensemanager/licenseGrant:LicenseGrant test arn:aws:license-manager::123456789011:grant:g-01d313393d9e443d8664cc054db1e089
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.