當前位置: 首頁>>代碼示例>>Python>>正文


Python moto.mock_sts方法代碼示例

本文整理匯總了Python中moto.mock_sts方法的典型用法代碼示例。如果您正苦於以下問題:Python moto.mock_sts方法的具體用法?Python moto.mock_sts怎麽用?Python moto.mock_sts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在moto的用法示例。


在下文中一共展示了moto.mock_sts方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: sh

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def sh(self):
        with moto.mock_s3(), moto.mock_sts():
            sh = security_hub_rules.SecurityHubRules(logging)
            yield sh 
開發者ID:servian,項目名稱:aws-auto-remediate,代碼行數:6,代碼來源:test_securityhub_s3.py

示例2: sh

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def sh(self):
        with moto.mock_kms(), moto.mock_sts():
            sh = security_hub_rules.SecurityHubRules(logging)
            yield sh 
開發者ID:servian,項目名稱:aws-auto-remediate,代碼行數:6,代碼來源:test_securityhub_kms.py

示例3: sh

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def sh(self):
        with moto.mock_ec2(), moto.mock_sts():
            sh = security_hub_rules.SecurityHubRules(logging)
            yield sh 
開發者ID:servian,項目名稱:aws-auto-remediate,代碼行數:6,代碼來源:test_securityhub_ec2.py

示例4: setup

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def setup(self):
        with moto.mock_cloudformation(), moto.mock_dynamodb2(), moto.mock_sts():
            setup = lambda_handler.Setup(logging)
            yield setup 
開發者ID:servian,項目名稱:aws-auto-remediate,代碼行數:6,代碼來源:test_setup.py

示例5: moto_sts

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def moto_sts():
    with moto.mock_sts():
        yield True 
開發者ID:awslabs,項目名稱:aws-data-wrangler,代碼行數:5,代碼來源:test_moto.py

示例6: boto3_client

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def boto3_client():
    with mock_sts():
        yield Boto3Client("123456789", "eu-west-1", "stack-id") 
開發者ID:Skyscanner,項目名稱:cfripper,代碼行數:5,代碼來源:test_boto3_client.py

示例7: sts

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def sts(aws_credentials, conn_dict):
    with mock_sts():
        yield boto3.client("sts", region_name="us-east-1") 
開發者ID:Netflix-Skunkworks,項目名稱:cloudaux,代碼行數:5,代碼來源:conftest.py

示例8: sts

# 需要導入模塊: import moto [as 別名]
# 或者: from moto import mock_sts [as 別名]
def sts():
    with mock_sts():
        yield boto3.client("sts", region_name="us-east-1") 
開發者ID:Netflix-Skunkworks,項目名稱:diffy,代碼行數:5,代碼來源:conftest.py


注:本文中的moto.mock_sts方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。