分享

confirm_product_instance亚马逊boto3

 进分法 2023-09-12

confirm_product_instance(**kwargs)¶
Determines whether a product code is associated with an instance. This action can only be used by the owner of the product code. It is useful when a product code owner must verify whether another user's instance is eligible for support.
See also: AWS API Documentation
Request Syntax

代码比较简单,建议直接上手

response = client.confirm_product_instance(
    InstanceId='string',
    ProductCode='string',
    DryRun=True|False
)
Parameters
* InstanceId (string) -- [REQUIRED]
The ID of the instance.
* ProductCode (string) -- [REQUIRED]
The product code. This must be a product code that you own.
* DryRun (boolean) -- Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .
Return type
dict
Returns

Response Syntax
{
    'OwnerId': 'string',
    'Return': True|False
}
Response Structure
* (dict) --
    * OwnerId (string) --
The Amazon Web Services account ID of the instance owner. This is only present if the product code is attached to the instance.
    * Return (boolean) --
The return value of the request. Returns true if the specified product code is owned by the requester and associated with the specified instance.

Examples
This example determines whether the specified product code is associated with the specified instance.
response = client.confirm_product_instance(
    InstanceId='i-1234567890abcdef0',
    ProductCode='774F4FF8',
)

print(response)
Expected Output:
{
    'OwnerId': '123456789012',
    'ResponseMetadata': {
        '...': '...',
    },
}

    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多